home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / fontfx1a / fotfx.frm < prev    next >
Text File  |  1999-09-12  |  11KB  |  245 lines

  1. VERSION 5.00
  2. Begin VB.Form FontFX 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   "                            Font FX"
  5.    ClientHeight    =   1800
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   5715
  9.    Icon            =   "FotFX.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   1800
  14.    ScaleWidth      =   5715
  15.    StartUpPosition =   3  'Windows Default
  16.    Begin VB.CommandButton Command14 
  17.       Caption         =   "Diag 1"
  18.       Height          =   225
  19.       Left            =   3765
  20.       TabIndex        =   14
  21.       Top             =   1305
  22.       Width           =   615
  23.    End
  24.    Begin VB.CommandButton Command13 
  25.       Caption         =   "Diag 2"
  26.       Height          =   225
  27.       Left            =   4395
  28.       TabIndex        =   13
  29.       Top             =   1305
  30.       Width           =   615
  31.    End
  32.    Begin VB.CommandButton Command12 
  33.       Caption         =   "Start Loop"
  34.       Height          =   255
  35.       Left            =   3750
  36.       TabIndex        =   12
  37.       Top             =   1545
  38.       Width           =   1260
  39.    End
  40.    Begin VB.CommandButton Command11 
  41.       Caption         =   "Start Loop"
  42.       Height          =   255
  43.       Left            =   2490
  44.       TabIndex        =   11
  45.       Top             =   1545
  46.       Width           =   1260
  47.    End
  48.    Begin VB.CommandButton Command10 
  49.       Caption         =   "Top"
  50.       Height          =   225
  51.       Left            =   3225
  52.       TabIndex        =   10
  53.       Top             =   1305
  54.       Width           =   525
  55.    End
  56.    Begin VB.CommandButton Command9 
  57.       Caption         =   "Bottom"
  58.       Height          =   225
  59.       Left            =   2505
  60.       TabIndex        =   9
  61.       Top             =   1305
  62.       Width           =   720
  63.    End
  64.    Begin VB.CommandButton Command8 
  65.       Caption         =   "About"
  66.       Height          =   255
  67.       Left            =   5025
  68.       TabIndex        =   8
  69.       ToolTipText     =   "In msg box form"
  70.       Top             =   1290
  71.       Width           =   675
  72.    End
  73.    Begin VB.CommandButton Command7 
  74.       Caption         =   "About"
  75.       Height          =   255
  76.       Left            =   5025
  77.       TabIndex        =   7
  78.       ToolTipText     =   "In Grow/Shrink form"
  79.       Top             =   1545
  80.       Width           =   675
  81.    End
  82.    Begin VB.CommandButton Command6 
  83.       Caption         =   "Start Loop"
  84.       Height          =   255
  85.       Left            =   1320
  86.       TabIndex        =   6
  87.       Top             =   1545
  88.       Width           =   1170
  89.    End
  90.    Begin VB.CommandButton Command5 
  91.       Caption         =   "Left"
  92.       Height          =   225
  93.       Left            =   1995
  94.       TabIndex        =   5
  95.       Top             =   1305
  96.       Width           =   495
  97.    End
  98.    Begin VB.CommandButton Command4 
  99.       Caption         =   "Right"
  100.       Height          =   225
  101.       Left            =   1320
  102.       TabIndex        =   4
  103.       Top             =   1305
  104.       Width           =   675
  105.    End
  106.    Begin VB.CommandButton Command3 
  107.       Caption         =   "Start Loop"
  108.       Height          =   255
  109.       Left            =   0
  110.       TabIndex        =   3
  111.       Top             =   1545
  112.       Width           =   1320
  113.    End
  114.    Begin VB.CommandButton Command2 
  115.       Caption         =   "Shrink"
  116.       Height          =   225
  117.       Left            =   615
  118.       TabIndex        =   2
  119.       Top             =   1305
  120.       Width           =   705
  121.    End
  122.    Begin VB.CommandButton Command1 
  123.       Caption         =   "Grow"
  124.       Height          =   225
  125.       Left            =   0
  126.       TabIndex        =   1
  127.       Top             =   1305
  128.       Width           =   615
  129.    End
  130.    Begin VB.PictureBox Picture1 
  131.       AutoRedraw      =   -1  'True
  132.       BeginProperty Font 
  133.          Name            =   "Arial"
  134.          Size            =   9.75
  135.          Charset         =   0
  136.          Weight          =   400
  137.          Underline       =   0   'False
  138.          Italic          =   0   'False
  139.          Strikethrough   =   0   'False
  140.       EndProperty
  141.       ForeColor       =   &H000000FF&
  142.       Height          =   1290
  143.       Left            =   0
  144.       ScaleHeight     =   1230
  145.       ScaleWidth      =   5655
  146.       TabIndex        =   0
  147.       Top             =   0
  148.       Width           =   5715
  149.    End
  150. End
  151. Attribute VB_Name = "FontFX"
  152. Attribute VB_GlobalNameSpace = False
  153. Attribute VB_Creatable = False
  154. Attribute VB_PredeclaredId = True
  155. Attribute VB_Exposed = False
  156. Private Sub Command1_Click()
  157. Call Grow("aa", 72, 8, "0.0001", Picture1) '(The Text you want to show, The Maximum font size you want, The minimum font size you want, The Pause between changing font sizes, The picture box you want it to show up in)
  158. End Sub
  159. Private Sub Command10_Click()
  160. Call TxtTop("aa", ".0005", 1, Middle, Picture1)
  161. End Sub
  162. Private Sub Command11_Click()
  163. If Command11.Caption = "Start Loop" Then 'If..Else..End If block to change the button caption to stop the loop
  164. Command11.Caption = "Stop Loop"
  165. Else
  166. Command11.Caption = "Start Loop"
  167. End If
  168. Do Until Command11.Caption = "Start Loop" 'Start Loop, Stop looping if the button says Start Loop
  169. Call TxtBottom("aa", ".0001", 1, Middle, Picture1) '(The Text, The Pause, the increment of movement, the possition of the y axis, top bottom or middle, the picturebox)
  170. Call TxtTop("aa", ".0001", 1, Middle, Picture1) '(The Text, The Pause, the increment of movement, the possition of the y axis, top bottom or middle, the picturebox)
  171. Loop 'Loop to beginnning
  172. End Sub
  173. Private Sub Command12_Click()
  174. If Command12.Caption = "Start Loop" Then 'If..Else..End If block to change the button caption to stop the loop
  175. Command12.Caption = "Stop Loop"
  176. Else
  177. Command12.Caption = "Start Loop"
  178. End If
  179. Do Until Command12.Caption = "Start Loop" 'Start loop, Stop looping if the button says Start Loop
  180. Call TxtDiagTopRight("aa", ".005", Picture1)
  181. Call TxtDiagTopLeft("aa", ".005", Picture1)
  182. Loop 'Loop to beggning
  183. End Sub
  184. Private Sub Command13_Click()
  185. Call TxtDiagTopRight("aa", ".005", Picture1)
  186. End Sub
  187. Private Sub Command14_Click()
  188. Call TxtDiagTopLeft("aa", ".005", Picture1)
  189. End Sub
  190. Private Sub Command2_Click()
  191. Call Shrink("aa", 72, 8, "0.0001", Picture1) '(The Text you want to show, The Maximum font size you want, The minimum font size you want, The Pause between changing font sizes, The picture box you want it to show up in)
  192. End Sub
  193. Private Sub Command3_Click()
  194. If Command3.Caption = "Start Loop" Then 'If..Else..End If block to change the button caption to stop the loop
  195. Command3.Caption = "Stop Loop"
  196. Else
  197. Command3.Caption = "Start Loop"
  198. End If
  199. Do Until Command3.Caption = "Start Loop" 'Start loop, Stop looping if the button says Start Loop
  200. Call Grow("aa", 72, 8, "0.0001", Picture1) '(The Text you want to show, The Maximum font size you want, The minimum font size you want, The Pause between changing font sizes, The picture box you want it to show up in)
  201. Call Shrink("aa", 72, 8, "0.0001", Picture1) '(The Text you want to show, The Maximum font size you want, The minimum font size you want, The Pause between changing font sizes, The picture box you want it to show up in)
  202. Loop 'Loop to beginning
  203. End Sub
  204. Private Sub Command4_Click()
  205. Call TxtRight("aa", ".0001", 1, Bottom, Picture1) '(The Text you want to show, The pause between the increments, the increment of movement, the possition of the y axis, top bottom or middle, The picture box you want it to show up in)
  206. End Sub
  207. Private Sub Command5_Click()
  208. Call TxtLeft("aa", ".0001", 1, Bottom, Picture1) '(The Text you want to show, The pause between the increments, the increment of movement, the possition of the y axis, top bottom or middle, The picture box you want it to show up in)
  209. End Sub
  210. Private Sub Command6_Click()
  211. If Command6.Caption = "Start Loop" Then 'If..Else..End If block to change the button caption to stop the loop
  212. Command6.Caption = "Stop Loop"
  213. Else
  214. Command6.Caption = "Start Loop"
  215. End